home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PPC1B3AA.ZIP / HELLO5.PPS < prev    next >
Text File  |  1996-07-28  |  111b  |  11 lines

  1. ; Demonstration of a simple For/Next loop
  2.  
  3. Int N
  4.  
  5. For N = 1 To 10
  6.     PrintLn "Hello, world"
  7. Next
  8.  
  9.  
  10.  
  11.